3f4f9b3b1515d74dc02d5315f00987fa432975dd,e2etest/src/main/java/com/microsoft/windowsazure/mobileservices/zumoe2etestapp/tests/LoginTests.java,LoginTests,LoginTests,#boolean#,57
Before Change
// With Callback
this.addTest(createLogoutWithCallbackTest());
this.addTest(createLoginWithCallbackTest(MobileServiceAuthenticationProvider.Google));
this.addTest(createCRUDWithCallbackTest(USER_PERMISSION_TABLE_NAME, MobileServiceAuthenticationProvider.Google, TablePermission.User, true));
this.addTest(createLogoutWithCallbackTest());
this.addTest(createLoginWithCallbackTest(MobileServiceAuthenticationProvider.Facebook));
this.addTest(createCRUDWithCallbackTest(USER_PERMISSION_TABLE_NAME, MobileServiceAuthenticationProvider.Facebook, TablePermission.User, true));
this.addTest(createLogoutWithCallbackTest());
this.addTest(createClientSideLoginWithCallbackTest(providersWithRecycledTokenSupport.get(0)));
this.addTest(createLogoutWithCallbackTest());
// this.addTest(createLoginWithGoogleAccountWithCallbackTest(false,
// null));
After Change
this.addTest(createCRUDWithCallbackTest(USER_PERMISSION_TABLE_NAME, provider, TablePermission.User, true));
if (providersWithRecycledTokenSupport.contains(provider)) {
this.addTest(createLogoutWithCallbackTest());
this.addTest(createClientSideLoginWithCallbackTest(provider));
}
}